New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

febs-decorator

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

febs-decorator

Some typescript decorator which use in front-end and back-end

  • 1.1.21
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Some typescript decorators, like spring-validation and so on.

  • Setup
  • Example
  • Reference

Setup

npm i febs-decorator

set config in tsconfig.json

"experimentalDecorators": true,
"emitDecoratorMetadata": true,

Example

Validation Example:

import {NotNull, Type} from 'febs-decorator';

class BeanDemo {
    @NotNull
    @Type.Boolean
    a: boolean = null
}

let obj = new BeanA();  // will throw a exception.

Service Example:

import {Service} from 'febs-decorator';

@Service()
class BeanDemo {
}

// get service instances.
@Autowired(BeanDemo)
let objArray:any[];

Bean Example:

import {Service, Bean} from 'febs-decorator';

@Service()
class BeanDemo {
  @Bean()
  foo(): Object {
    return {};
  }
}

// get bean instances.
@Autowired('foo')
let obj:Object;

FeignClient Example:

import { RestController, RequestMapping, RequestMethod } from "febs-decorator";

@FeignClient({name:'serviceName'})
export class BaseService {
  @RequestMapping({ path: '/api', method: RequestMethod.GET, feignCastType: BeanDemo })
  async request(): Promise<BeanDemo> {
    // fallback.
    throw new Error('Message Error');
  }
}

// request
let result:BeanDemo = new BaseService().request();

Reference

Validator Decorator

see readme

A set of validator decorators, e.g. @NotNull, @Max, @Min, @Range ..

Rest Decorator

see readme

A set of restful api decorators, e.g. @RestController, @FeignClient, @RequestMapping, @RequestBody, @PathVariable ..

Keywords

FAQs

Package last updated on 26 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc